Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/swapnilsparsh/30DaysOfJavaScript/03 - Random Color Generator/

assets /cody/swapnilsparsh/30DaysOfJavaScript/03 - Random Color Generator/assets/
1 Items
  • wheel.png
  • font /cody/swapnilsparsh/30DaysOfJavaScript/03 - Random Color Generator/font/
    1 Items
  • sans.ttf
  • index.html /cody/swapnilsparsh/30DaysOfJavaScript/03 - Random Color Generator/index.html
    394 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />

    main.js /cody/swapnilsparsh/30DaysOfJavaScript/03 - Random Color Generator/main.js
    197 Views
    0 Comments
    window.onload = function () {
    addColor();
    };

    for (let i = 1; i <= 9; i++) {
    const box = document.createElement('div');

    style.css /cody/swapnilsparsh/30DaysOfJavaScript/03 - Random Color Generator/style.css
    141 Views
    0 Comments
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

    body {
    font-family: "sans";